    .notice-card {
                background: white;
                border-radius: 1.8rem;
                transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
                border: none;
                box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
                margin-bottom: 1.5rem;
                overflow: hidden;
            }
            .notice-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 25px 40px -16px rgba(0, 0, 0, 0.12);
            }
            /* ===== INDIVIDUAL NOTICE ITEM ===== */
            .notice-item {
                background: #ffffff;
                border-radius: 1.2rem;
                padding: 1rem;
                transition: all 0.2s ease;
                border: 1px solid #eef2ff;
                margin-bottom: 1rem;
            }
            .notice-item:hover {
                background: #fafcff;
                border-color: #bfdbfe;
                transform: translateX(4px);
            }
            .notice-tag-new {
                background: #ff7350;
                color: white;
                font-size: 0.7rem;
                font-weight: 700;
                padding: 0.2rem 0.7rem;
                border-radius: 20px;
                letter-spacing: 0.5px;
            }
            .notice-date {
                font-size: 0.75rem;
                color: #6c757d;
                background: #f1f5f9;
                display: inline-block;
                padding: 0.2rem 0.7rem;
                border-radius: 20px;
            }
            .view-icon-link {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: rgba(255, 115, 80, 0.1);
                color: #ff7350;
                font-size: 0.8rem;
                font-weight: 600;
                padding: 5px 12px;
                border-radius: 30px;
                text-decoration: none;
                transition: all 0.2s ease;
            }
            .view-icon-link i {
                font-size: 0.75rem;
            }
            .view-icon-link:hover {
                background: #ff7350;
                color: white;
                text-decoration: none;
                transform: scale(1.02);
            }
            /* ===== NOTICES MAIN SECTION ===== */
            .notices-main {
                padding: 2rem 1rem;
                max-width: 1280px;
                margin: 0 auto;
            }
            .notices-container {
                max-width: 1000px;
                margin: 0 auto;
                padding: 0 1rem;
            }
            /* Stats Card */
            .stats-card1 {
                display: flex;
                justify-content: flex-end;
                margin-bottom: 2rem;
            }
            .stat-item-right {
                background: white;
                border-radius: 60px;
                padding: 0.5rem 1.5rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                display: flex;
                align-items: baseline;
                gap: 0.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            .stat-number {
                font-size: 1rem;
                font-weight: 700;
                color: #1e4a8a;
                background: #eef2ff;
                padding: 0.2rem 0.8rem;
                border-radius: 40px;
            }
            .stat-label {
                font-size: 0.85rem;
                font-weight: 500;
                color: #4b5563;
            }
            /* Search Box */
            .search-box {
                position: relative;
                margin-bottom: 2rem;
            }
            .search-box input {
                width: 100%;
                padding: 1rem 1rem 1rem 3rem;
                border: 1px solid #e2e8f0;
                border-radius: 60px;
                font-size: 1rem;
                transition: all 0.3s ease;
                background: white;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            }
            .search-box input:focus {
                outline: none;
                border-color: #ff7350;
                box-shadow: 0 0 0 3px rgba(255, 115, 80, 0.2);
            }
            .search-box i {
                position: absolute;
                left: 1.2rem;
                top: 50%;
                transform: translateY(-50%);
                color: #94a3b8;
                font-size: 1.1rem;
                pointer-events: none;
            }
            /* Notice Cards inside list */
            #noticesList .notice-card {
                background: white;
                border-radius: 1.2rem;
                margin-bottom: 1.25rem;
                transition: all 0.25s ease;
                border: 1px solid #edf2f7;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            }
            #noticesList .notice-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.12);
                border-color: #cbd5e1;
            }
            #noticesList .card-body {
                padding: 1.25rem 1.5rem;
            }
            .notice-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 1rem;
                margin-bottom: 0.75rem;
            }
            .notice-title-wrapper {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                flex-wrap: wrap;
            }
            .notice-icon {
                width: 40px;
                height: 40px;
                background: #fee2e2;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ff7350;
                font-size: 1.2rem;
            }
            .notice-title {
                font-size: 1.2rem;
                font-weight: 700;
                color: #474aa1;
                margin: 0;
                letter-spacing: -0.3px;
                background:white;
            }
            .new-badge {
                background: #ff7350;
                color: white;
                font-size: 0.65rem;
                font-weight: 700;
                padding: 0.2rem 0.6rem;
                border-radius: 30px;
                text-transform: uppercase;
                vertical-align: middle;
            }
            
            .btn-notice {
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                background: #ff7350;
                color: white;
                border: none;
                padding: 0.5rem 1.25rem;
                border-radius: 40px;
                font-weight: 600;
                font-size: 0.8rem;
                transition: all 0.2s ease;
                text-decoration: none;
            }
            
            .btn-notice:hover {
                background: #e55a3a;
                color: white;
                text-decoration: none;
                transform: translateY(-2px);
            }
            
            .notice-meta {
                display: flex;
                align-items: center;
                gap: 1rem;
                flex-wrap: wrap;
                margin-top: 0.5rem;
                padding-left: 3rem;
            }
            
            .notice-meta span {
                font-size: 0.75rem;
                color: #64748b;
                background: #f8fafc;
                padding: 0.25rem 0.75rem;
                border-radius: 20px;
            }
            
            .notice-meta i {
                margin-right: 0.3rem;
                font-size: 0.7rem;
            }
            
            /* Empty State */
            .empty-notices {
                text-align: center;
                padding: 4rem 2rem;
                background: white;
                border-radius: 2rem;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
            }
            
            .empty-notices i {
                font-size: 4rem;
                color: #cbd5e1;
                margin-bottom: 1rem;
            }
            
            .empty-notices h4 {
                font-size: 1.5rem;
                font-weight: 700;
                color: #1e293b;
                margin-bottom: 0.5rem;
            }
            
            .empty-notices p {
                color: #64748b;
                max-width: 400px;
                margin: 0 auto 1.5rem;
            }
            
            /* ===== RESPONSIVE ===== */
            @media (max-width: 768px) {
                .breadcrumb-hero h1 {
                    font-size: 1.8rem;
                }
                
                .notices-container {
                    padding: 0 0.5rem;
                }
                
                .notice-header {
                    flex-direction: column;
                    align-items: flex-start;
                }
                
                .notice-title {
                    font-size: 1rem;
                }
                
                .notice-meta {
                    padding-left: 0;
                }
                
                .btn-notice {
                    align-self: flex-start;
                    font-size: 0.75rem;
                    padding: 0.4rem 1rem;
                }
                
                .stats-card1 {
                    justify-content: center;
                }
                
                .stat-item-right {
                    width: 100%;
                    justify-content: center;
                }
                
                .notice-icon {
                    width: 32px;
                    height: 32px;
                    font-size: 0.9rem;
                }
            }
            
            @media (max-width: 480px) {
                .notices-main {
                    padding: 1rem 0.5rem;
                }
                
                #noticesList .card-body {
                    padding: 1rem;
                }
                
                .notice-title-wrapper {
                    gap: 0.5rem;
                }
                
                .notice-meta span {
                    font-size: 0.7rem;
                }
            }
            
            /* ===== UTILITY CLASSES ===== */
            .no-notices {
                background: white;
                border-radius: 1.2rem;
                padding: 2rem;
                text-align: center;
                color: #64748b;
            }
            
            .fade-up {
                animation: fadeUp 0.5s ease forwards;
            }
            
            @keyframes fadeUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            /* Search highlight effect */
            .notice-card.hidden-notice {
                display: none;
            }
            /* Breadcrumb Section Styles */
        .breadcrumb-section {
            background: linear-gradient(135deg, #0b2b5c 0%, #b7c3ad 100%);
            padding: 0.5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .breadcrumb-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .breadcrumb-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .breadcrumb-section .container {
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb-content {
            text-align: center;
        }
        
        .breadcrumb-content h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 0.5rem 0;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff, #e0f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        /* Optional: Add breadcrumb navigation links if needed */
        .breadcrumb-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }
        
        .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .breadcrumb-nav a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        
        .breadcrumb-nav span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .breadcrumb-nav i {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .breadcrumb-section {
                padding: 2rem 0;
            }
            
            .breadcrumb-content h1 {
                font-size: 1.8rem;
            }
            
            .breadcrumb-nav a,
            .breadcrumb-nav span {
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .breadcrumb-section {
                padding: 1.5rem 0;
            }
            
            .breadcrumb-content h1 {
                font-size: 1.5rem;
            }
        }